Review the Code
7. Try
it: Review the Code
The Macro
Code starts with:
Sub
UpdateProducts()
Where Sub
means Subroutine.
It finishes at the bottom with:
End Sub
The next
five lines are Comments. The
Comments have a quote mark. These Comments include the name
and description for the Macro.
Application.ReplaceFormat.Font goes from: With to End With. This Visual Basic code edits the Font, Size, and Themecolor.
The second action, Cells.Replace, defines where to look (Cells), what to look for, (Replace What), the Replacement, and the SearchOrder.
So, VBA code makes some sense if you look for the clues.
Keep going...